[CI][Bugfix] Drop duplicated examples/ prefix in tensorize_vllm_model command#42039
Merged
vllm-bot merged 1 commit intovllm-project:mainfrom May 8, 2026
Merged
[CI][Bugfix] Drop duplicated examples/ prefix in tensorize_vllm_model command#42039vllm-bot merged 1 commit intovllm-project:mainfrom
vllm-bot merged 1 commit intovllm-project:mainfrom
Conversation
… command
The Examples steps run with working_dir: /vllm-workspace/examples, but the
serialize/deserialize one-liner was invoking
`python3 examples/features/tensorize_vllm_model.py ...`, which resolved to
`/vllm-workspace/examples/examples/features/...` and failed with
"No such file or directory" in build #65099 ("Model Runner V2 Examples").
The redundant `examples/` prefix was introduced by PR vllm-project#41084
([Examples][last/6] Resettle examples) and copy-pasted into five sites:
- .buildkite/test_areas/model_runner_v2.yaml (NV)
- .buildkite/test_areas/misc.yaml (NV)
- .buildkite/test-amd.yaml (mi250 / mi300 / mi355)
Drop the prefix so the command matches the bare-relative convention used by
every neighbouring command in the same steps.
Signed-off-by: haosdent <haosdent@hotmail.com>
Signed-off-by: haosdent <haosdent@gmail.com>
Contributor
Author
libinta
pushed a commit
to libinta/vllm
that referenced
this pull request
May 8, 2026
… command (vllm-project#42039) Signed-off-by: haosdent <haosdent@gmail.com> Signed-off-by: Libin Tang <libin.tang@intel.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Purpose
The "Examples" steps run with
working_dir: /vllm-workspace/examples, but #41084 left a redundantexamples/prefix in thetensorize_vllm_model.pycommand at 5 sites across 3 buildkite YAMLs, resolving to/vllm-workspace/examples/examples/features/...and failing both the Model Runner V2 Examples step and the Examples step. Drop the prefix to match the bare-relative convention used by neighbouring commands.Test Plan
Test Result